home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / BC++ Builder / DATA.Z / EVENTS.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-10  |  963 b   |  23 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl\vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------------
  9. USEFORM("Event1.cpp", frmEvents);
  10. USEDATAMODULE("Event2.cpp", dmEvents);
  11. USERES("events.res");
  12. //---------------------------------------------------------------------
  13. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  14. {
  15.     Application->Initialize();
  16.     Application->CreateForm(__classid(TfrmEvents), &frmEvents);
  17.     Application->CreateForm(__classid(TdmEvents), &dmEvents);
  18.     Application->Run();
  19.  
  20.     return 0;
  21. }
  22. //---------------------------------------------------------------------------
  23.